✨ feat(revu): register plugin, teach skills the triage fields, add watch#2
Merged
Conversation
Register the revu plugin in marketplace.json (bumps marketplace to v2.3.0), add plugin.json with setup instructions for @kud/revu-cli, and overhaul all three skills: - discuss/implement: prefer live `revu --export --format json --out -` over static file fallbacks; honour severity, status (skip dismissed/resolved), and captured code range - implement: filter by triage state before presenting checklist - watch (new): poll-based live-review partner designed to run under /loop; diffs annotation signatures per run and discusses only new/changed items
kud
force-pushed
the
feat/revu-plugin-update
branch
from
July 4, 2026 16:40
4463fb0 to
5627462
Compare
kud
marked this pull request as ready for review
July 4, 2026 16:40
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Brings the revu plugin up to date with the new
revu-clicapabilities and makes it a first-class, enabled marketplace plugin.The revu plugin turns a code review captured in the revu TUI into action — you annotate lines on one side, Claude discusses/applies them on the other. This PR registers it properly and teaches its skills the richer
.revu.jsonschema revu now writes (severity, status, source), plus a new live-watch skill.Changes
plugins/revu/.claude-plugin/plugin.json(CLI-based, no MCP server — modelled ongandi; points at@kud/revu-cli) and addedrevuto.claude-plugin/marketplace.json. The plugin existed as skill files but was never registered, so it wasn't installable. Marketplace bumped2.2.0 → 2.3.0.discuss+implementnow read triage. Both prefer the live structured export —revu --export --format json --out -— which carriesseverity,status,source, and the captured code range (falling back to.revu.json, thenrevu-review.md). They order by severity (blockers first) and honour triage:discussskips dismissed/resolved unless asked;implementrefuses to apply adismissedorresolvedannotation and shows severity/source in its checklist.watchskill. Live-watches.revu.jsonand discusses annotations as they appear, for a hands-free side-by-side session. Claude can't be woken by a file change, so it runs under/loop(/loop 15s /revu:watch) and diffs against a per-repo state file to surface only what's new/changed. Discuss-only — it never edits code (that stays behindimplement's confirmation gate).Why now
revu-clijust shipped triage states/severity, structured JSON export with--out -,--import, push-to-PR, and live--watch(kud/revu-cli#8). The plugin (the consumer of the shared.revu.jsoncontract) was still on the old 4-field schema and told users to presseto export. This closes that gap and unlocks the live annotate → react loop.Notes
--out -grab is preferred, but each skill falls back to reading.revu.json/revu-review.mdif the CLI is older or unavailable.@kud/revu-cliwith--export --out -(♻️ refactor(cli): modularise revu + agent round-trip features (import/export/triage/push-pr/watch) revu-cli#8); once that's released,npm i -g @kud/revu-cligets the required version.